Draft
Conversation
- Add Framer override functions for authentication and custom properties - Configure semantic-release for automated versioning and publishing - Set up GitHub Actions workflow for CI/CD - Include comprehensive documentation and examples - Support both npm and CDN imports via jsdelivr
- Update GitHub Actions workflow to use Node.js 20 - Resolve debug dependency version conflicts - Regenerate package-lock.json for clean dependency tree
- Configure semantic-release for all branches as pre-release except main - Update GitHub workflow to trigger on all PRs - Add prerelease script for local testing - Reorganize documentation: move dev info to CONTRIBUTING.md - Update SEMANTIC_RELEASE_SETUP.md with new workflow
There was a problem hiding this comment.
Pull Request Overview
This PR configures semantic release for automated versioning and publishing of the @outseta/toolkit package. The setup implements trunk-based development with automatic pre-releases for all pull requests and production releases when merging to main.
- Added semantic release configuration with conventional commits for automated versioning
- Configured GitHub Actions workflow to trigger releases on both main branch pushes and pull requests
- Updated documentation to reflect the new development workflow and pre-release testing capabilities
Reviewed Changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| package.json | Added prerelease script for local pre-release testing |
| SEMANTIC_RELEASE_SETUP.md | Updated documentation to describe trunk-based development workflow with pre-releases |
| README.md | Moved development instructions to CONTRIBUTING.md |
| CONTRIBUTING.md | Expanded with comprehensive development workflow, conventional commits guide, and semantic release process |
| .releaserc.json | Changed branch configuration from specific "beta" branch to wildcard pattern for all non-main branches |
| .github/workflows/release.yml | Updated to trigger on pull requests and upgraded Node.js version from 18 to 20 |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Comment on lines
+26
to
+27
| "semantic-release:dry-run": "semantic-release --dry-run", | ||
| "prerelease": "semantic-release --dry-run" |
There was a problem hiding this comment.
The 'prerelease' script duplicates the functionality of 'semantic-release:dry-run'. Consider using a more descriptive name like 'test:prerelease' or remove the duplicate script to avoid confusion.
Suggested change
| "semantic-release:dry-run": "semantic-release --dry-run", | |
| "prerelease": "semantic-release --dry-run" | |
| "semantic-release:dry-run": "semantic-release --dry-run" |
…o npm for semantic-release
…specific branches
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.